VideoCategories.cs 539 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Flyinsono.DBCopy.Tool.Entities
  7. {
  8. internal class VideoCategories
  9. {
  10. public string Id { get; private set; }
  11. public DateTime CreateTime { get; set; } = DateTime.MinValue;
  12. public DateTime UpdateTime { get; set; } = DateTime.MinValue;
  13. public bool IsDeleted { get; set; }
  14. public string Name { get; set; }
  15. public IList<string> VideoIds { get; set; }
  16. }
  17. }