FaceLoginApp: Constantes.cs
using System; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace FaceLoginApp.Helpers | |
{ | |
public static class Constantes | |
{ | |
public static readonly string FaceApiURL = "tu-endpoint"; | |
public static readonly string FaceApiKey = "tu-llave"; | |
public static readonly string FaceGroupID = "sistemas"; | |
public static readonly string FaceGroupName = "Depto. de Sistemas"; | |
public static readonly string FaceGroupDescription = "Repositorio de rostros de los empleados de Sistemas"; | |
public static readonly string NombreBD = "BaseDatosSistemas.db"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment