16 lines
490 B
C#
16 lines
490 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Web;
|
|
|
|
namespace Chruch.Net.Models
|
|
{
|
|
public class NewVisitorViewClass
|
|
{
|
|
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:yyyy-MM-dd}")]
|
|
public DateTime BeginDate { get; set; }
|
|
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0:yyyy-MM-dd}")]
|
|
public DateTime EndDate { get; set; }
|
|
}
|
|
} |