8 lines
211 B
C#
8 lines
211 B
C#
namespace Iceshrimp.Shared.Schemas.Web;
|
|
|
|
public class RuleUpdateRequest
|
|
{
|
|
public int? Order { get; set; }
|
|
public string? Text { get; set; }
|
|
public string? Description { get; set; }
|
|
}
|