42 lines
902 B
C#
42 lines
902 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace PowderCoating.Web.TempScaffold;
|
|
|
|
public partial class JobPriorityLookup
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string PriorityCode { get; set; } = null!;
|
|
|
|
public string DisplayName { get; set; } = null!;
|
|
|
|
public int DisplayOrder { get; set; }
|
|
|
|
public string ColorClass { get; set; } = null!;
|
|
|
|
public string? IconClass { get; set; }
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
public bool IsSystemDefined { get; set; }
|
|
|
|
public string? Description { get; set; }
|
|
|
|
public int CompanyId { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public DateTime? UpdatedAt { get; set; }
|
|
|
|
public string? CreatedBy { get; set; }
|
|
|
|
public string? UpdatedBy { get; set; }
|
|
|
|
public bool IsDeleted { get; set; }
|
|
|
|
public DateTime? DeletedAt { get; set; }
|
|
|
|
public string? DeletedBy { get; set; }
|
|
}
|