Demo_Validation/Models/Country.cs

20 lines
423 B
C#
Raw Permalink Normal View History

2025-01-28 10:05:14 +00:00
using System;
using System.Collections.Generic;
namespace Demo_Validation.Models;
public partial class Country
{
public int CountryId { get; set; }
public string CountryName { get; set; } = null!;
public string? Code { get; set; }
public int? Code2 { get; set; }
public string CountryNameEn { get; set; } = null!;
public virtual ICollection<User> Users { get; set; } = new List<User>();
}