Files
WCTDataMiner/src/WCTDataMiner.Core/Models/TxSoftware.cs

15 lines
434 B
C#
Raw Normal View History

namespace WCTDataMiner.Core.Models;
/// <summary>
/// TX软件版本维度表
/// </summary>
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<TestScenario> TestScenarios { get; set; } = [];
}