UserLinkVideos.cs 505 B

1234567891011121314151617181920
  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 UserLinkVideos
  9. {
  10. public string Id { get; private set; }
  11. public DateTime CreateTime { get; private set; }
  12. public DateTime UpdateTime { get; set; }
  13. public bool IsDeleted { get; set; }
  14. public string UserId { get; set; }
  15. public IList<string> VideoIds { get; set; }
  16. }
  17. }