26 lines
467 B
C#
26 lines
467 B
C#
namespace CuentasCobrar.UI.Helpers
|
|
{
|
|
public class Enum
|
|
{
|
|
public enum TipoNotificacion
|
|
{
|
|
error,
|
|
success,
|
|
warning,
|
|
info
|
|
}
|
|
|
|
public enum NotificationPosition
|
|
{
|
|
Top,
|
|
TopStart,
|
|
TopEnd,
|
|
Center,
|
|
CenterStart,
|
|
CenterEnd,
|
|
Bottom,
|
|
BottomStart,
|
|
BottomEnd
|
|
}
|
|
}
|
|
}
|