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