Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gdonega/40ca855fb2a0e53c937c40b195bc0f5b to your computer and use it in GitHub Desktop.
Save gdonega/40ca855fb2a0e53c937c40b195bc0f5b to your computer and use it in GitHub Desktop.
C# - Enum: TiposJogosComAtributo - Atributo
using System;
using System.Collections.Generic;
using System.Text;
namespace TiposJogosComAtributo.Atributos
{
[AttributeUsage(AttributeTargets.Field, AllowMultiple = false)]
public class Descricao : Attribute
{
public string Valor { get; private set; }
public Descricao(string valor)
{
Valor = valor;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment