_template-service/Models/GreetCounter.cs

12 lines
254 B
C#
Raw Permalink Normal View History

namespace $REPO_NAME.Models;
using System;
using System.ComponentModel.DataAnnotations.Schema;
public class GreetCounter
{
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public Guid Id { get; set; }
public int Amount { get; set; }
}