mirror of
https://gitlab.com/buildfeed/BuildFeed.git
synced 2024-03-22 21:10:34 +08:00
13 lines
266 B
C#
13 lines
266 B
C#
using System;
|
|
|
|
namespace BuildFeed.Model
|
|
{
|
|
public class ItemHistory<T>
|
|
{
|
|
public ItemHistoryType Type { get; set; }
|
|
public DateTime Time { get; set; }
|
|
public string UserName { get; set; }
|
|
|
|
public T Item { get; set; }
|
|
}
|
|
} |