mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-13 03:59:50 +08:00
16 lines
570 B
C#
16 lines
570 B
C#
using Foxel.Services.Attributes; // For StorageType enum
|
|
|
|
namespace Foxel.Models.Response.Storage;
|
|
|
|
public class StorageModeResponse
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; } = string.Empty;
|
|
public StorageType StorageType { get; set; }
|
|
public string StorageTypeName => StorageType.ToString();
|
|
public string? ConfigurationJson { get; set; } // Consider if this should be exposed or masked/summarized
|
|
public bool IsEnabled { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public DateTime UpdatedAt { get; set; }
|
|
}
|