29 lines
580 B
C#
29 lines
580 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace DataModel
|
|
{
|
|
public class Profile
|
|
{
|
|
|
|
[Key]
|
|
public int ID { get; set; }
|
|
|
|
public String Name { get; set; }
|
|
public String User { get; set; }
|
|
public String Description { get; set; }
|
|
|
|
public bool isActive { get; set; }
|
|
public String OutputPath { get; set; }
|
|
|
|
|
|
public virtual Format LogFormat { get; set; }
|
|
|
|
public virtual ICollection<ValueProperty> ValueProperties { get; set; }
|
|
|
|
|
|
|
|
}
|
|
}
|