mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-12 11:32:56 +08:00
8 lines
165 B
C#
8 lines
165 B
C#
namespace Foxel.Models.Request.Log;
|
|
|
|
public class ClearLogsRequest
|
|
{
|
|
public DateTime? BeforeDate { get; set; }
|
|
public bool ClearAll { get; set; } = false;
|
|
}
|