You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
588 B
28 lines
588 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using FLocal.Common.dataobjects;
|
|
|
|
namespace FLocal.Common.URL.users.user {
|
|
public abstract class Abstract : AbstractUrl {
|
|
|
|
public readonly User user;
|
|
|
|
public Abstract(string userId, string remainder) : base(remainder) {
|
|
int iUserId;
|
|
if(int.TryParse(userId, out iUserId)) {
|
|
this.user = User.LoadById(iUserId);
|
|
} else {
|
|
this.user = User.LoadByName(userId);
|
|
}
|
|
}
|
|
|
|
public override string title {
|
|
get {
|
|
return this.user.name;
|
|
}
|
|
}
|
|
|
|
}
|
|
}
|
|
|