flower comment supported
This commit is contained in:
@ -61,6 +61,12 @@ public class RecordItem : ILocation
|
||||
[JsonPropertyName("date")]
|
||||
public required long DateUnixTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否为私有记录
|
||||
/// </summary>
|
||||
[Column("hidden")]
|
||||
public bool? IsHidden { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 操作人 uid
|
||||
/// </summary>
|
||||
@ -73,6 +79,12 @@ public class RecordItem : ILocation
|
||||
[Column("byname")]
|
||||
public string? ByUserName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 标题
|
||||
/// </summary>
|
||||
[Column("title")]
|
||||
public string? Title { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
|
Reference in New Issue
Block a user