PlayRoleLogDto.cs 575 B

1234567891011121314151617181920
  1. using System;
  2. namespace WeOnlineApp.TrainingCampPlay.Dto
  3. {
  4. public class PlayRoleLogDto
  5. {
  6. public int Id { get; set; }
  7. public string Play { get; set; }
  8. public string Role { get; set; }
  9. public string Word { get; set; }
  10. public string ImagePath { get; set; }
  11. public string Name { get; set; }
  12. public string UserName { get; set; }
  13. public int LogState { get; set; }
  14. public long UserId { get; set; }
  15. public DateTime LogDate { get; set; }
  16. public string ScenePath { get; set; }
  17. }
  18. }