| 1234567891011121314151617181920 |
- using System;
- namespace WeOnlineApp.TrainingCampPlay.Dto
- {
- public class PlayRoleLogDto
- {
- public int Id { get; set; }
- public string Play { get; set; }
- public string Role { get; set; }
- public string Word { get; set; }
- public string ImagePath { get; set; }
- public string Name { get; set; }
- public string UserName { get; set; }
- public int LogState { get; set; }
- public long UserId { get; set; }
- public DateTime LogDate { get; set; }
- public string ScenePath { get; set; }
- }
- }
|