Abstractions
Installation
dotnet add package Dosaic.Plugins.Endpoints.AbstractionsFeatures
Type
Kind
Description
Usage
Marking a resource identifier
using Dosaic.Plugins.Endpoints.Abstractions;
public class OrderModel
{
[ResourceIdentifier]
public Guid Id { get; set; }
public string CustomerName { get; set; }
public decimal TotalAmount { get; set; }
}Reflecting on the attribute at runtime
Last updated