123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Flyinsono.DBCopy.Tool.Entities
- {
- internal class CourseNoticeReminds
- {
- public string Id { get; private set; }
- public DateTime CreateTime { get; set; } = DateTime.MinValue;
- public DateTime UpdateTime { get; set; } = DateTime.MinValue;
- public bool IsDeleted { get; set; }
-
-
-
- public string CourseId { get; set; }
-
-
-
- public string UserId { get; set; }
-
-
-
- public CourseNoticeType NoticeType { get; set; }
-
-
-
- public bool Completed { get; set; }
- }
-
-
-
- public enum CourseNoticeType
- {
-
- BeginSoon,
-
- EnterCourse
- }
-
- }
|