20 lines
423 B
C#
20 lines
423 B
C#
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>();
|
|
}
|