Skip to content

Instantly share code, notes, and snippets.

@jesuscampos
Last active December 6, 2017 12:25
Show Gist options
  • Save jesuscampos/a4865ae280a1d4c2fe8948e5e9d70a95 to your computer and use it in GitHub Desktop.
Save jesuscampos/a4865ae280a1d4c2fe8948e5e9d70a95 to your computer and use it in GitHub Desktop.
public class AlineamientoAttribute : Attribute
{
public Alineamiento Alineamiento { get; set; }
public AlineamientoAttribute(Alineamiento alineamiento)
{
this.Alineamiento = alineamiento;
}
}
public enum Alineamiento
{
Izda,
Centro,
Derecha
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment