mirror of
https://github.com/AIDotNet/AntSK.git
synced 2026-02-17 14:06:11 +08:00
14 lines
378 B
C#
14 lines
378 B
C#
using System;
|
|
|
|
namespace Xzy.KnowledgeBase.Models
|
|
{
|
|
public class ActivitiesType
|
|
{
|
|
public string Id { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
public ActivityUser User { get; set; }
|
|
public ActivityGroup Group { get; set; }
|
|
public ActivityProject Project { get; set; }
|
|
public string Template { get; set; }
|
|
}
|
|
} |