Files
BI/server/DongfangHydro.Dashboard.Api/Domain/ProductionLine.cs
T

11 lines
326 B
C#

namespace DongfangHydro.Dashboard.Api.Domain;
public sealed class ProductionLine
{
public Guid Id { get; set; }
public string Code { get; set; } = string.Empty;
public string Name { get; set; } = string.Empty;
public string Owner { get; set; } = string.Empty;
public bool IsActive { get; set; } = true;
}