Country.cs 555 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using Mpeg4ConverterTool.Document;
  4. namespace Mpeg4ConverterTool
  5. {
  6. internal class Country: TrackableEntity
  7. {
  8. public string Name { get; set; }
  9. public string Description { get; set; }
  10. public ICollection<CityInfo> Cities { get; set; }
  11. public Country()
  12. {
  13. Cities = new List<CityInfo>();
  14. }
  15. public Country(string id, DateTime createTime) : base(id, createTime)
  16. {
  17. Cities = new List<CityInfo>();
  18. }
  19. }
  20. }