mirror of
https://github.com/bitwarden/server.git
synced 2026-02-02 07:03:11 +08:00
9 lines
151 B
C#
9 lines
151 B
C#
using Bit.Core.Entities;
|
|
|
|
namespace Bit.Admin.Models;
|
|
|
|
public class TaxRatesModel : PagedModel<TaxRate>
|
|
{
|
|
public string Message { get; set; }
|
|
}
|