123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- using System;
- using System.Collections.Generic;
- namespace GxPress.Result.App.OftenContact
- {
-
-
-
- public class OftenContactInfo : Middle.Middle
- {
-
-
-
-
- public int Id { get; set; }
-
-
-
- public string Name { get; set; }
-
-
-
- public string AvatarUrl { get; set; }
-
-
-
- public DateTime? ChatTime { get; set; }
-
-
-
- public int MsgType { get; set; }
-
-
-
- public string ChatText { get; set; }
-
-
-
- public string ImId { get; set; }
-
-
-
- public int ChatType { get; set; }
-
-
-
- public int ToUserId { get; set; }
-
-
-
-
- public DateTime? LastModifiedDate { get; set; }
-
-
-
-
- public string ContactUserId { get; set; }
-
-
-
-
- public bool IsDisturb { get; set; }
- }
-
-
-
- public class OftenContactDto
- {
-
-
-
-
- public int Id { get; set; }
-
-
-
-
- public bool IsTop { get; set; }
- }
- }
|