mirror of
https://github.com/morbalint/kemkas-backend.git
synced 2026-07-17 21:23:46 +00:00
12 lines
243 B
C#
12 lines
243 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Kemkas.Web.ViewModels;
|
|
|
|
public class FelszerelesIdAndCount
|
|
{
|
|
[JsonPropertyName("id")]
|
|
public string Id { get; set; }
|
|
|
|
[JsonPropertyName("count")]
|
|
public int Count { get; set; }
|
|
} |