-
Notifications
You must be signed in to change notification settings - Fork 2
/
IUserGalleryProfile.cs
33 lines (29 loc) · 1.13 KB
/
IUserGalleryProfile.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace GalleryServerPro.Business.Interfaces
{
/// <summary>
/// Represents a set of properties for a user that are specific to a particular gallery.
/// </summary>
public interface IUserGalleryProfile
{
/// <summary>
/// Gets or sets the ID of the gallery the profile properties are associated with.
/// </summary>
/// <value>The gallery ID.</value>
int GalleryId { get; set; }
/// <summary>
/// Gets or sets the ID for the user's personal album (aka user album).
/// </summary>
/// <value>The ID for the user's personal album (aka user album).</value>
int UserAlbumId { get; set; }
/// <summary>
/// Gets or sets a value indicating whether the user has enabled or disabled her personal album (aka user album).
/// </summary>
/// <value>A value indicating whether the user has enabled or disabled her personal album (aka user album).</value>
bool EnableUserAlbum { get; set; }
/// <summary>
/// Creates a new instance containing a deep copy of the items it contains.
/// </summary>
/// <returns>Returns a new instance containing a deep copy of the items it contains.</returns>
IUserGalleryProfile Copy();
}
}