mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-05-31 10:47:31 +08:00
10 lines
265 B
C#
10 lines
265 B
C#
using System;
|
|
|
|
namespace BetterGenshinImpact.Service.Notification.Model.Base;
|
|
|
|
// TODO: 需要制定标准,目前瞎写的
|
|
public class TaskDetails
|
|
{
|
|
public Guid Id { get; set; } = Guid.NewGuid();
|
|
public DateTime StartTime { get; set; } = DateTime.Now;
|
|
} |