12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.SmallFun
- {
-
-
-
-
- public class YouDaoDto:DtoBase
- {
-
-
-
- public string? From { get; set; }
-
-
-
- public string? To { get; set; }
-
-
-
- public string? Txt { get; set; }
- }
- }
|