26 lines
508 B
C#
26 lines
508 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ChouBox.Model.Entities;
|
|
|
|
public partial class Picture
|
|
{
|
|
public uint Id { get; set; }
|
|
|
|
public string Imgurl { get; set; } = null!;
|
|
|
|
public string Token { get; set; } = null!;
|
|
|
|
public uint Addtime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 1 正常 2 删除
|
|
/// </summary>
|
|
public byte Status { get; set; }
|
|
|
|
/// <summary>
|
|
/// 存储位置 1=本地 2= 阿里云
|
|
/// </summary>
|
|
public bool? Type { get; set; }
|
|
}
|