namespace WCTDataMiner.Core.Models;
///
/// TX软件版本维度表
///
public class TxSoftware
{
public Guid Id { get; set; } = Guid.NewGuid();
public string Version { get; set; } = null!;
public bool IsDeleted { get; set; } = false;
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
// Navigation Properties
public ICollection TestScenarios { get; set; } = [];
}