mirror of
https://github.com/TechplexEngineer/plexview.git
synced 2026-07-27 22:15:37 +00:00
22 lines
339 B
C#
22 lines
339 B
C#
using System;
|
|
|
|
namespace PlexView
|
|
{
|
|
/// <summary>
|
|
/// Login Creds model.
|
|
/// </summary>
|
|
public class Creds
|
|
{
|
|
public string first { get; set; }
|
|
|
|
public string last { get; set; }
|
|
|
|
public string pass { get; set; } //@todo encrypt this in transit
|
|
|
|
public string gridName { get; set; }
|
|
|
|
public string gridURL { get; set; }
|
|
}
|
|
}
|
|
|