adam
fc574d5002
Some checks failed
gitea.arg.rip/_template-service/pipeline/head There was a failure building this commit
and you're getting a database, if you don't like it remove it.
12 lines
254 B
C#
12 lines
254 B
C#
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; }
|
|
} |