Files
TWA-App/TWASys-App/DBModels/SotrageModel/ValidationDomain.cs
2025-11-19 07:57:43 +07:00

25 lines
656 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace TWASys_App.DBModels.SotrageModel
{
public class ValidationDomain
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public long IdValidationDomain { set; get; }
public string Protocol { set; get; }
public int PortNumber { set; get; }
public string DomainName { set; get; }
public ValidationDomain()
{
IdValidationDomain = 0;
Protocol = string.Empty;
DomainName = string.Empty;
PortNumber = -1;
}
}
}