12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using Mpeg4ConverterTool.Document;
- namespace Mpeg4ConverterTool
- {
- internal class Country: TrackableEntity
- {
- public string Name { get; set; }
- public string Description { get; set; }
- public ICollection<CityInfo> Cities { get; set; }
- public Country()
- {
- Cities = new List<CityInfo>();
- }
- public Country(string id, DateTime createTime) : base(id, createTime)
- {
- Cities = new List<CityInfo>();
- }
- }
- }
|