feat: 初始功能
This commit is contained in:
9
Models/LibraryCategory.cs
Normal file
9
Models/LibraryCategory.cs
Normal file
@@ -0,0 +1,9 @@
|
||||
namespace CloudPrint.Client.Models;
|
||||
|
||||
public sealed class LibraryCategory
|
||||
{
|
||||
public int Id { get; init; }
|
||||
public string Name { get; init; } = string.Empty;
|
||||
public string Icon { get; init; } = string.Empty;
|
||||
public int SortOrder { get; init; }
|
||||
}
|
||||
Reference in New Issue
Block a user