This commit is contained in:
jl
2025-06-23 18:50:32 +08:00
parent f7a87c41ff
commit 81ef9284b7
6 changed files with 117 additions and 90 deletions

View File

@ -20,7 +20,7 @@ namespace Epost.Model
private string _UserName = string.Empty;
public int _PageIndex = 0;
public int _PageSize = 0;
private string _Title = string.Empty;
public int PageIndex
{
get
@ -172,5 +172,7 @@ namespace Epost.Model
_ID = value;
}
}
public string Title { get => _Title; set => _Title = value; }
}
}