CountryArea.cs 231 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Database.Database;
  4. public partial class CountryArea
  5. {
  6. public int? Id { get; set; }
  7. public int? CountryId { get; set; }
  8. public int? AreaId { get; set; }
  9. }